/* Dark Theme Base */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #f1f1f1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  text-align: center;
}

h1 {
  color: #ff1e56;
  font-size: 2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  color: #c9c9c9;
  line-height: 1.8;
  max-width: 700px;
  margin: 10px auto;
  font-size: 1.1rem;
}

.policy-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(255, 0, 80, 0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.policy-box:hover {
  transform: scale(1.02);
}

footer {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #999;
  text-align: center;
}

footer a {
  color: #ff1e56;
  text-decoration: none;
}

.contact {
  margin-top: 20px;
  font-size: 1rem;
}

.contact a{
    color: red;
}

/* Smooth entry animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.policy-box {
  animation: fadeIn 1s ease forwards;
}